home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.xa;
-
- import java.util.Enumeration;
-
- class CMQDataSource$1 implements Enumeration {
- // $FF: synthetic field
- final CMQDataSource this$0;
- final Enumeration elems;
- final Enumeration reusables;
-
- public boolean hasMoreElements() {
- return this.elems.hasMoreElements() || this.reusables.hasMoreElements();
- }
-
- public Object nextElement() {
- return this.elems.hasMoreElements() ? this.elems.nextElement() : this.reusables.nextElement();
- }
-
- CMQDataSource$1(CMQDataSource var1) {
- this.this$0 = var1;
- this.elems = this.this$0.doc.getDeclNames(Class.forName("com.extensibility.xml.ElementDeclaration"), true);
- this.reusables = this.this$0.doc.getContentGroupPENames();
- }
- }
-